home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / VOXRAY.ZIP / STORAGE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-02  |  157 b   |  12 lines

  1. #ifndef _STORAGE_
  2. #define _STORAGE_
  3.  
  4. typedef struct
  5.         {
  6.         int count;
  7.         int size;
  8.         void *data;
  9.         } STORAGE;
  10.  
  11. #endif
  12.